home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / Servis / X-setup / _SETUP.1 / XQ Registry Options 1.xpl < prev    next >
Text File  |  1999-06-25  |  1KB  |  48 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="System\Security"
  5. "NAME"="Disable Regedit"
  6. "VERSION"="1.1"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Disable starting RegEdit.EXE"
  9. "DESCRIPTION 1"="If this option is set, the current user is no longer allowed to start regedit.exe or regedt32.exe."
  10. "DESCRIPTION 2"="In the case a user tries to execute a registry-utility (NOT X-Setup ;-), a message will be displayed that this feature has been disabled."
  11. "DESCRIPTION 3"="Be really careful with this option!!!"
  12. "AUTHOR"="Xteq Systems"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
  15.  
  16.  
  17. 'Only for Win95???? 
  18. 'sPath="HKUS\.Default\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
  19.  
  20. 'Works on NT 4 sp3 and Win 95 OSR2
  21. sPath="HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System\DisableRegistryTools"
  22.  
  23. Sub Plugin_Initialize 
  24.  i=RegReadValue(sPath)
  25.  if i=1 then
  26.   Call SetUIElement(1,true) 
  27.  end if  
  28. End Sub
  29.  
  30. Sub Plugin_CheckData(ElementIndex)
  31. End Sub
  32.  
  33. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  b=GetUIElement(1)
  35.  if b=true then
  36.   Call RegWriteValue(sPath,1,2) 
  37.  else
  38.   Call RegWriteValue(sPath,0,2) 
  39.  end if
  40. End Sub
  41.  
  42.  
  43. Sub Plugin_Terminate 
  44. End Sub
  45.  
  46.  
  47.  
  48.